﻿2026-08-25T16:05:03.3331457Z ##[group]Run set -euo pipefail
2026-08-25T16:05:03.3331744Z [36;1mset -euo pipefail[0m
2026-08-25T16:05:03.3331958Z [36;1mPIN=0c95435[0m
2026-08-25T16:05:03.3332162Z [36;1mCACHE="$HOME/spt-n1-oldbroker"[0m
2026-08-25T16:05:03.3332406Z [36;1mBIN="$CACHE/target/debug/spt"[0m
2026-08-25T16:05:03.3332725Z [36;1m# Self-healing cache: rebuild the pin only when it moves. Clone OUTSIDE[0m
2026-08-25T16:05:03.3333140Z [36;1m# the workspace (a clone inside gets adopted by the cargo workspace).[0m
2026-08-25T16:05:03.3333551Z [36;1mif [ ! -x "$BIN" ] || [ "$(cat "$CACHE/.builtpin" 2>/dev/null || true)" != "$PIN" ]; then[0m
2026-08-25T16:05:03.3333881Z [36;1m  rm -rf "$CACHE"[0m
2026-08-25T16:05:03.3334111Z [36;1m  git clone "$GITHUB_WORKSPACE" "$CACHE"[0m
2026-08-25T16:05:03.3334381Z [36;1m  git -C "$CACHE" checkout "$PIN"[0m
2026-08-25T16:05:03.3334724Z [36;1m  # CARGO_INCREMENTAL=0 — THE one-shot build in this workflow (releases#103:[0m
2026-08-25T16:05:03.3335140Z [36;1m  # -29.8% wall, -5.65 GB of target, n=3, slowest-OFF beat fastest-ON). The[0m
2026-08-25T16:05:03.3335711Z [36;1m  # finding is scoped to COLD one-shot builds and this is the only CI site that[0m
2026-08-25T16:05:03.3336132Z [36;1m  # is one: the cache is `rm -rf`'d and rebuilt from scratch when the pin moves,[0m
2026-08-25T16:05:03.3336541Z [36;1m  # and between pin moves it is consumed as a BINARY and never recompiled — so[0m
2026-08-25T16:05:03.3336966Z [36;1m  # the incremental state it would write is never read by anything, ever. Every[0m
2026-08-25T16:05:03.3337401Z [36;1m  # other cargo invocation in this workflow builds into the runner's PERSISTENT[0m
2026-08-25T16:05:03.3337830Z [36;1m  # `_work` target, where incremental is the mechanism that makes the next run[0m
2026-08-25T16:05:03.3338183Z [36;1m  # cheap; those are deliberately left alone.[0m
2026-08-25T16:05:03.3338540Z [36;1m  CARGO_INCREMENTAL=0 bash .github/bench/wrap.sh n1-oldbroker-build -- \[0m
2026-08-25T16:05:03.3338946Z [36;1m    cargo build --manifest-path "$CACHE/Cargo.toml" -p spt --bin spt[0m
2026-08-25T16:05:03.3339357Z [36;1m  echo "$PIN" > "$CACHE/.builtpin"[0m
2026-08-25T16:05:03.3339593Z [36;1mfi[0m
2026-08-25T16:05:03.3339855Z [36;1mSPT_N1_OLD_BROKER="$BIN" bash .github/bench/wrap.sh n1-pairing -- \[0m
2026-08-25T16:05:03.3340227Z [36;1m  cargo test -p spt --test n1_pairing -- --nocapture[0m
2026-08-25T16:05:03.3351269Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2026-08-25T16:05:03.3351551Z env:
2026-08-25T16:05:03.3351736Z   RUSTFLAGS: -C link-arg=-fuse-ld=mold
2026-08-25T16:05:03.3352095Z   SPT_CI_TEST_TMP: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-32867379861-1-F09CTR
2026-08-25T16:05:03.3352545Z   TEMP: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-32867379861-1-F09CTR
2026-08-25T16:05:03.3352953Z   TMP: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-32867379861-1-F09CTR
2026-08-25T16:05:03.3353374Z   TMPDIR: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-32867379861-1-F09CTR
2026-08-25T16:05:03.3353708Z ##[endgroup]
2026-08-25T16:05:03.6364984Z    Compiling proc-macro2 v1.0.106
2026-08-25T16:05:03.6365401Z    Compiling unicode-ident v1.0.24
2026-08-25T16:05:03.6365702Z    Compiling quote v1.0.45
2026-08-25T16:05:03.6365969Z    Compiling libc v0.2.186
2026-08-25T16:05:03.6366473Z    Compiling cfg-if v1.0.4
2026-08-25T16:05:03.6367166Z    Compiling serde_core v1.0.228
2026-08-25T16:05:03.6392448Z    Compiling serde v1.0.228
2026-08-25T16:05:03.6427525Z    Compiling typenum v1.20.1
2026-08-25T16:05:03.6442050Z    Compiling log v0.4.32
2026-08-25T16:05:03.6484863Z    Compiling version_check v0.9.5
2026-08-25T16:05:03.6544045Z    Compiling portable-atomic v1.13.1
2026-08-25T16:05:03.6564947Z    Compiling pin-project-lite v0.2.17
2026-08-25T16:05:03.6583703Z    Compiling memchr v2.8.1
2026-08-25T16:05:03.6667747Z    Compiling critical-section v1.2.0
2026-08-25T16:05:03.6669332Z    Compiling subtle v2.6.1
2026-08-25T16:05:03.7221861Z    Compiling find-msvc-tools v0.1.9
2026-08-25T16:05:03.7669924Z    Compiling shlex v2.0.1
2026-08-25T16:05:03.7744411Z    Compiling futures-core v0.3.32
2026-08-25T16:05:03.8072975Z    Compiling smallvec v1.15.1
2026-08-25T16:05:03.8481087Z    Compiling bytes v1.11.1
2026-08-25T16:05:03.9129597Z    Compiling equivalent v1.0.2
2026-08-25T16:05:03.9224944Z    Compiling itoa v1.0.18
2026-08-25T16:05:03.9585587Z    Compiling semver v1.0.28
2026-08-25T16:05:03.9917723Z    Compiling stable_deref_trait v1.2.1
2026-08-25T16:05:04.0011595Z    Compiling futures-sink v0.3.32
2026-08-25T16:05:04.0100980Z    Compiling futures-io v0.3.32
2026-08-25T16:05:04.0271440Z    Compiling generic-array v0.14.7
2026-08-25T16:05:04.0700671Z    Compiling slab v0.4.12
2026-08-25T16:05:04.0771350Z    Compiling futures-channel v0.3.32
2026-08-25T16:05:04.0865920Z    Compiling futures-task v0.3.32
2026-08-25T16:05:04.1192153Z    Compiling rand_core v0.10.1
2026-08-25T16:05:04.1304168Z    Compiling bitflags v2.12.1
2026-08-25T16:05:04.1769780Z    Compiling hashbrown v0.17.1
2026-08-25T16:05:04.1953924Z    Compiling autocfg v1.5.1
2026-08-25T16:05:04.2250155Z    Compiling rustc_version v0.4.1
2026-08-25T16:05:04.2653963Z    Compiling getrandom v0.4.2
2026-08-25T16:05:04.2760785Z    Compiling cpufeatures v0.2.17
2026-08-25T16:05:04.2892193Z    Compiling rustversion v1.0.22
2026-08-25T16:05:04.3199881Z    Compiling fnv v1.0.7
2026-08-25T16:05:04.3340799Z    Compiling scopeguard v1.2.0
2026-08-25T16:05:04.3831132Z    Compiling strsim v0.11.1
2026-08-25T16:05:04.3963767Z    Compiling lock_api v0.4.14
2026-08-25T16:05:04.4166753Z    Compiling const-oid v0.9.6
2026-08-25T16:05:04.4260576Z    Compiling cfg_aliases v0.2.1
2026-08-25T16:05:04.5050824Z    Compiling libm v0.2.16
2026-08-25T16:05:04.5136652Z    Compiling writeable v0.6.3
2026-08-25T16:05:04.6101084Z    Compiling litemap v0.8.2
2026-08-25T16:05:04.6400714Z    Compiling icu_normalizer_data v2.2.0
2026-08-25T16:05:04.7030530Z    Compiling num-traits v0.2.19
2026-08-25T16:05:04.7171363Z    Compiling utf8_iter v1.0.4
2026-08-25T16:05:04.7718173Z    Compiling fs_extra v1.3.0
2026-08-25T16:05:04.7814587Z    Compiling icu_properties_data v2.2.0
2026-08-25T16:05:04.7911519Z    Compiling dunce v1.0.5
2026-08-25T16:05:04.8029277Z    Compiling ident_case v1.0.1
2026-08-25T16:05:04.8913904Z    Compiling percent-encoding v2.3.2
2026-08-25T16:05:04.8987263Z    Compiling http v1.4.1
2026-08-25T16:05:04.9485180Z    Compiling syn v2.0.117
2026-08-25T16:05:04.9580992Z    Compiling hybrid-array v0.4.12
2026-08-25T16:05:04.9860508Z    Compiling thiserror v2.0.18
2026-08-25T16:05:04.9890795Z    Compiling zerocopy v0.8.50
2026-08-25T16:05:05.0038814Z    Compiling unicode-segmentation v1.13.3
2026-08-25T16:05:05.0917401Z    Compiling indexmap v2.14.0
2026-08-25T16:05:05.1017545Z    Compiling aws-lc-rs v1.17.0
2026-08-25T16:05:05.1227424Z    Compiling cpufeatures v0.3.0
2026-08-25T16:05:05.1830626Z    Compiling form_urlencoded v1.2.2
2026-08-25T16:05:05.1960717Z    Compiling spin v0.9.8
2026-08-25T16:05:05.2256948Z    Compiling untrusted v0.9.0
2026-08-25T16:05:05.3470563Z    Compiling rustls v0.23.40
2026-08-25T16:05:05.3540458Z    Compiling heck v0.5.0
2026-08-25T16:05:05.3630543Z    Compiling atomic-waker v1.1.2
2026-08-25T16:05:05.3893073Z    Compiling anyhow v1.0.102
2026-08-25T16:05:05.4056438Z    Compiling unicode-xid v0.2.6
2026-08-25T16:05:05.4681114Z    Compiling jobserver v0.1.34
2026-08-25T16:05:05.4840564Z    Compiling convert_case v0.10.0
2026-08-25T16:05:05.4957923Z    Compiling const-oid v0.10.2
2026-08-25T16:05:05.5052148Z    Compiling parking_lot_core v0.9.12
2026-08-25T16:05:05.5571035Z    Compiling paste v1.0.15
2026-08-25T16:05:05.5810728Z    Compiling crypto-common v0.2.2
2026-08-25T16:05:05.6090399Z    Compiling block-buffer v0.12.0
2026-08-25T16:05:05.6619895Z    Compiling crypto-common v0.1.7
2026-08-25T16:05:05.6802280Z    Compiling block-buffer v0.10.4
2026-08-25T16:05:05.6974088Z    Compiling inout v0.2.2
2026-08-25T16:05:05.7250266Z    Compiling cc v1.2.63
2026-08-25T16:05:05.7965405Z    Compiling digest v0.10.7
2026-08-25T16:05:05.7966448Z    Compiling fastrand v2.4.1
2026-08-25T16:05:05.7968681Z    Compiling httparse v1.10.1
2026-08-25T16:05:05.8484975Z    Compiling curve25519-dalek v4.1.3
2026-08-25T16:05:05.8621032Z    Compiling ahash v0.8.12
2026-08-25T16:05:05.8785149Z    Compiling base64ct v1.8.3
2026-08-25T16:05:06.0381570Z    Compiling http-body v1.0.1
2026-08-25T16:05:06.0459053Z    Compiling powerfmt v0.2.0
2026-08-25T16:05:06.0590756Z    Compiling either v1.16.0
2026-08-25T16:05:06.1560977Z    Compiling pem-rfc7468 v1.0.0
2026-08-25T16:05:06.1720702Z    Compiling sha2 v0.10.9
2026-08-25T16:05:06.2790913Z    Compiling mio v1.2.1
2026-08-25T16:05:06.2989766Z    Compiling socket2 v0.6.4
2026-08-25T16:05:06.3230702Z    Compiling getrandom v0.2.17
2026-08-25T16:05:06.4761154Z    Compiling cipher v0.5.2
2026-08-25T16:05:06.5490795Z    Compiling rand_core v0.6.4
2026-08-25T16:05:06.5660711Z    Compiling uuid v1.23.2
2026-08-25T16:05:06.5727978Z    Compiling deranged v0.5.8
2026-08-25T16:05:06.6584124Z    Compiling tower-service v0.3.3
2026-08-25T16:05:06.7157493Z    Compiling num-conv v0.2.2
2026-08-25T16:05:06.7400820Z    Compiling signature v2.2.0
2026-08-25T16:05:06.7526916Z    Compiling chacha20 v0.10.0
2026-08-25T16:05:06.7750631Z    Compiling time-core v0.1.8
2026-08-25T16:05:06.7910016Z    Compiling pkg-config v0.3.33
2026-08-25T16:05:06.8648527Z    Compiling try-lock v0.2.5
2026-08-25T16:05:06.8767175Z    Compiling base64 v0.22.1
2026-08-25T16:05:06.9130836Z    Compiling cmake v0.1.58
2026-08-25T16:05:06.9344142Z    Compiling zmij v1.0.21
2026-08-25T16:05:06.9551034Z    Compiling vcpkg v0.2.15
2026-08-25T16:05:06.9737743Z    Compiling tinyvec_macros v0.1.1
2026-08-25T16:05:07.0180752Z    Compiling data-encoding v2.11.0
2026-08-25T16:05:07.0181678Z    Compiling tinyvec v1.11.0
2026-08-25T16:05:07.0340530Z    Compiling num-integer v0.1.47
2026-08-25T16:05:07.0952327Z    Compiling rand v0.10.1
2026-08-25T16:05:07.1030014Z    Compiling want v0.3.1
2026-08-25T16:05:07.1519380Z    Compiling parking_lot v0.12.5
2026-08-25T16:05:07.1930687Z    Compiling inout v0.1.4
2026-08-25T16:05:07.2534482Z    Compiling spt-procident v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-procident)
2026-08-25T16:05:07.2845586Z    Compiling vergen-lib v9.1.0
2026-08-25T16:05:07.3030456Z    Compiling n0-future v0.3.2
2026-08-25T16:05:07.3122258Z    Compiling crossbeam-utils v0.8.21
2026-08-25T16:05:07.4168540Z    Compiling spin v0.10.0
2026-08-25T16:05:07.4246918Z    Compiling num-bigint-dig v0.8.6
2026-08-25T16:05:07.4391619Z    Compiling httpdate v1.0.3
2026-08-25T16:05:07.4466811Z    Compiling cordyceps v0.3.4
2026-08-25T16:05:07.4867184Z    Compiling diatomic-waker v0.2.3
2026-08-25T16:05:07.5257773Z    Compiling winnow v1.0.3
2026-08-25T16:05:07.5330921Z    Compiling parking v2.2.1
2026-08-25T16:05:07.5680862Z    Compiling serde_json v1.0.150
2026-08-25T16:05:07.6270867Z    Compiling futures-lite v2.6.1
2026-08-25T16:05:07.6731373Z    Compiling spt-poolguard v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-poolguard)
2026-08-25T16:05:07.6896939Z    Compiling num-iter v0.1.46
2026-08-25T16:05:07.7350650Z    Compiling aws-lc-sys v0.41.0
2026-08-25T16:05:07.7357537Z    Compiling ring v0.17.14
2026-08-25T16:05:07.7621813Z    Compiling cipher v0.4.4
2026-08-25T16:05:07.7961070Z    Compiling libsqlite3-sys v0.30.1
2026-08-25T16:05:07.8032869Z    Compiling futures-buffered v0.2.13
2026-08-25T16:05:07.8151323Z    Compiling ed25519 v2.2.3
2026-08-25T16:05:07.8310696Z    Compiling netlink-packet-core v0.8.1
2026-08-25T16:05:07.9996518Z    Compiling digest v0.11.3
2026-08-25T16:05:07.9998198Z    Compiling universal-hash v0.5.1
2026-08-25T16:05:08.0960498Z    Compiling lazy_static v1.5.0
2026-08-25T16:05:08.1289977Z    Compiling vergen-lib v0.1.6
2026-08-25T16:05:08.1433528Z    Compiling vergen v9.1.0
2026-08-25T16:05:08.1510801Z    Compiling heapless v0.7.17
2026-08-25T16:05:08.1575242Z    Compiling curve25519-dalek v5.0.0-pre.6
2026-08-25T16:05:08.1751839Z    Compiling noq-udp v0.10.0
2026-08-25T16:05:08.1855316Z    Compiling aho-corasick v1.1.4
2026-08-25T16:05:08.2550866Z    Compiling sync_wrapper v1.0.2
2026-08-25T16:05:08.2760937Z    Compiling toml_datetime v1.1.1+spec-1.1.0
2026-08-25T16:05:08.2862675Z    Compiling opaque-debug v0.3.1
2026-08-25T16:05:08.2935446Z    Compiling byteorder v1.5.0
2026-08-25T16:05:08.3527497Z    Compiling allocator-api2 v0.2.21
2026-08-25T16:05:08.3548881Z    Compiling regex-syntax v0.8.10
2026-08-25T16:05:08.4003488Z    Compiling polyval v0.6.2
2026-08-25T16:05:08.4013966Z    Compiling spt-store v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-store)
2026-08-25T16:05:08.5003973Z    Compiling hash32 v0.2.1
2026-08-25T16:05:08.5554064Z    Compiling vergen-gitcl v1.0.8
2026-08-25T16:05:08.6359189Z    Compiling fallible-iterator v0.3.0
2026-08-25T16:05:08.6767321Z    Compiling num_threads v0.1.7
2026-08-25T16:05:08.7011362Z    Compiling ryu v1.0.23
2026-08-25T16:05:08.7120936Z    Compiling signature v3.0.0
2026-08-25T16:05:08.7200726Z    Compiling fallible-streaming-iterator v0.1.9
2026-08-25T16:05:08.8011106Z    Compiling tower-layer v0.3.3
2026-08-25T16:05:08.8411997Z    Compiling time v0.3.47
2026-08-25T16:05:08.8803946Z    Compiling ghash v0.5.1
2026-08-25T16:05:08.8930202Z    Compiling sha2 v0.11.0-rc.5
2026-08-25T16:05:08.9571445Z    Compiling aes v0.8.4
2026-08-25T16:05:08.9732175Z    Compiling ctr v0.9.2
2026-08-25T16:05:09.0030807Z    Compiling fs2 v0.4.3
2026-08-25T16:05:09.1372677Z    Compiling toml_parser v1.1.2+spec-1.1.0
2026-08-25T16:05:09.1865070Z    Compiling http-body-util v0.1.3
2026-08-25T16:05:09.2490019Z    Compiling aead v0.5.2
2026-08-25T16:05:09.3570537Z    Compiling arrayvec v0.7.6
2026-08-25T16:05:09.4560654Z    Compiling utf8parse v0.2.2
2026-08-25T16:05:09.4826619Z    Compiling openssl-probe v0.2.1
2026-08-25T16:05:09.5392408Z    Compiling rustix v1.1.4
2026-08-25T16:05:09.5644449Z    Compiling aes-gcm v0.10.3
2026-08-25T16:05:09.6436467Z    Compiling crossbeam-channel v0.5.15
2026-08-25T16:05:09.6649210Z    Compiling crossbeam-epoch v0.9.18
2026-08-25T16:05:09.7191308Z    Compiling toml_edit v0.25.12+spec-1.1.0
2026-08-25T16:05:09.7280560Z    Compiling netlink-packet-route v0.29.0
2026-08-25T16:05:09.8450772Z    Compiling synstructure v0.13.2
2026-08-25T16:05:09.9352345Z    Compiling darling_core v0.20.11
2026-08-25T16:05:10.2103531Z    Compiling blake3 v1.8.5
2026-08-25T16:05:10.2223394Z    Compiling memoffset v0.6.5
2026-08-25T16:05:10.3230054Z    Compiling ppv-lite86 v0.2.21
2026-08-25T16:05:10.3710733Z    Compiling acto v0.8.2
2026-08-25T16:05:10.4093482Z    Compiling noq v0.18.0
2026-08-25T16:05:10.4820685Z    Compiling netwatch v0.16.0
2026-08-25T16:05:10.4977722Z    Compiling linux-raw-sys v0.12.1
2026-08-25T16:05:10.5055881Z    Compiling proc-macro-crate v3.5.0
2026-08-25T16:05:10.5463977Z    Compiling tagptr v0.2.0
2026-08-25T16:05:10.6200545Z    Compiling rustc-hash v2.1.2
2026-08-25T16:05:10.6907323Z    Compiling foldhash v0.2.0
2026-08-25T16:05:10.6998304Z    Compiling mac-addr v0.3.0
2026-08-25T16:05:10.7190777Z    Compiling sorted-index-buffer v0.2.1
2026-08-25T16:05:10.8018511Z    Compiling rand_chacha v0.3.1
2026-08-25T16:05:10.8521463Z    Compiling regex-automata v0.4.14
2026-08-25T16:05:10.8599354Z    Compiling thiserror v1.0.69
2026-08-25T16:05:10.8810083Z    Compiling ref-cast v1.0.25
2026-08-25T16:05:10.9774230Z    Compiling xml-rs v0.8.28
2026-08-25T16:05:11.0246446Z    Compiling lru-slab v0.1.2
2026-08-25T16:05:11.0480455Z    Compiling rand v0.8.7
2026-08-25T16:05:11.0998843Z    Compiling identity-hash v0.1.0
2026-08-25T16:05:11.1858779Z    Compiling hashbrown v0.16.1
2026-08-25T16:05:11.3423325Z    Compiling serde_derive_internals v0.29.1
2026-08-25T16:05:11.4267037Z    Compiling netlink-packet-route v0.30.0
2026-08-25T16:05:11.7186413Z    Compiling serde_derive v1.0.228
2026-08-25T16:05:11.7341276Z    Compiling zeroize_derive v1.4.3
2026-08-25T16:05:11.7832993Z    Compiling tokio-macros v2.7.0
2026-08-25T16:05:11.8750913Z    Compiling futures-macro v0.3.32
2026-08-25T16:05:11.9695591Z    Compiling zerofrom-derive v0.1.7
2026-08-25T16:05:12.2573091Z    Compiling zeroize v1.8.2
2026-08-25T16:05:12.4246504Z    Compiling yoke-derive v0.8.2
2026-08-25T16:05:12.4469676Z    Compiling zerovec-derive v0.11.3
2026-08-25T16:05:12.4500674Z    Compiling displaydoc v0.2.6
2026-08-25T16:05:12.4745545Z    Compiling tokio v1.52.3
2026-08-25T16:05:12.5372673Z    Compiling tracing-attributes v0.1.31
2026-08-25T16:05:12.7111750Z    Compiling futures-util v0.3.32
2026-08-25T16:05:12.9344747Z    Compiling rustls-pki-types v1.14.1
2026-08-25T16:05:12.9649388Z    Compiling thiserror-impl v2.0.18
2026-08-25T16:05:13.1706541Z    Compiling curve25519-dalek-derive v0.1.1
2026-08-25T16:05:13.2990808Z    Compiling zerofrom v0.1.8
2026-08-25T16:05:13.5370756Z    Compiling darling_macro v0.20.11
2026-08-25T16:05:13.6501214Z    Compiling yoke v0.8.3
2026-08-25T16:05:13.7680617Z    Compiling derive_more-impl v2.1.1
2026-08-25T16:05:13.7930950Z    Compiling der v0.7.10
2026-08-25T16:05:13.8710432Z    Compiling zerovec v0.11.6
2026-08-25T16:05:13.8966704Z    Compiling zerotrie v0.2.4
2026-08-25T16:05:13.9690906Z    Compiling darling v0.20.11
2026-08-25T16:05:14.0241088Z    Compiling derive_builder_core v0.20.2
2026-08-25T16:05:14.2501355Z    Compiling n0-error-macros v0.1.3
2026-08-25T16:05:14.4031343Z    Compiling spez v0.1.2
2026-08-25T16:05:14.5586602Z    Compiling tinystr v0.8.3
2026-08-25T16:05:14.5790760Z    Compiling potential_utf v0.1.5
2026-08-25T16:05:14.7138233Z    Compiling icu_collections v2.2.0
2026-08-25T16:05:14.7846806Z    Compiling icu_locale_core v2.2.0
2026-08-25T16:05:15.2050991Z    Compiling derive_builder_macro v0.20.2
2026-08-25T16:05:15.2254762Z    Compiling n0-error v0.1.3
2026-08-25T16:05:15.3661470Z    Compiling spki v0.7.3
2026-08-25T16:05:15.4447322Z    Compiling derive_builder v0.20.2
2026-08-25T16:05:15.5398744Z    Compiling der v0.8.0-rc.10
2026-08-25T16:05:15.5560253Z    Compiling pin-project-internal v1.1.13
2026-08-25T16:05:15.5790792Z    Compiling pkcs8 v0.10.2
2026-08-25T16:05:15.8922923Z    Compiling pkcs1 v0.7.5
2026-08-25T16:05:16.0230891Z    Compiling icu_provider v2.2.0
2026-08-25T16:05:16.3457295Z    Compiling futures-executor v0.3.32
2026-08-25T16:05:16.4685602Z    Compiling icu_properties v2.2.0
2026-08-25T16:05:16.4773201Z    Compiling icu_normalizer v2.2.0
2026-08-25T16:05:16.5003419Z    Compiling ed25519-dalek v2.2.0
2026-08-25T16:05:16.5650579Z    Compiling ipnet v2.12.0
2026-08-25T16:05:16.8361083Z    Compiling pin-project v1.1.13
2026-08-25T16:05:16.8581334Z    Compiling spt-proto v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-proto)
2026-08-25T16:05:16.8974088Z    Compiling futures v0.3.32
2026-08-25T16:05:16.9630420Z    Compiling spki v0.8.0-rc.4
2026-08-25T16:05:17.1630879Z    Compiling pkcs8 v0.11.0-rc.10
2026-08-25T16:05:17.3100765Z    Compiling once_cell v1.21.4
2026-08-25T16:05:17.3183061Z    Compiling prefix-trie v0.8.4
2026-08-25T16:05:17.3330651Z    Compiling ed25519 v3.0.0-rc.4
2026-08-25T16:05:17.4120998Z    Compiling cobs v0.3.0
2026-08-25T16:05:17.5181451Z    Compiling tracing-core v0.1.36
2026-08-25T16:05:17.5890431Z    Compiling regex v1.12.3
2026-08-25T16:05:17.6961052Z    Compiling hashbrown v0.14.5
2026-08-25T16:05:17.7322526Z    Compiling postcard-derive v0.2.2
2026-08-25T16:05:17.7644552Z    Compiling data-encoding-macro-internal v0.1.18
2026-08-25T16:05:17.9676660Z    Compiling idna_adapter v1.2.2
2026-08-25T16:05:18.0690529Z    Compiling tracing v0.1.44
2026-08-25T16:05:18.0730691Z    Compiling idna v1.1.0
2026-08-25T16:05:18.1592075Z    Compiling derive_more v2.1.1
2026-08-25T16:05:18.2263169Z    Compiling rsa v0.9.10
2026-08-25T16:05:18.2375020Z    Compiling postcard v1.1.3
2026-08-25T16:05:18.2691591Z    Compiling data-encoding-macro v0.1.20
2026-08-25T16:05:18.3277193Z    Compiling tokio-util v0.7.18
2026-08-25T16:05:18.4052947Z    Compiling netlink-sys v0.8.8
2026-08-25T16:05:18.4232928Z    Compiling tower v0.5.3
2026-08-25T16:05:18.4233632Z    Compiling ed25519-dalek v3.0.0-pre.6
2026-08-25T16:05:18.5450808Z    Compiling hashlink v0.9.1
2026-08-25T16:05:18.6709785Z    Compiling url v2.5.8
2026-08-25T16:05:18.6958897Z    Compiling rustls-native-certs v0.8.4
2026-08-25T16:05:18.7061117Z    Compiling strum_macros v0.28.0
2026-08-25T16:05:18.7989564Z    Compiling num_enum_derive v0.7.6
2026-08-25T16:05:18.8734740Z    Compiling enum-assoc v1.3.0
2026-08-25T16:05:18.9689812Z    Compiling rusqlite v0.32.1
2026-08-25T16:05:18.9790896Z    Compiling iroh-metrics-derive v0.4.1
2026-08-25T16:05:19.0810670Z    Compiling async-trait v0.1.89
2026-08-25T16:05:19.1390570Z    Compiling netdev v0.42.0
2026-08-25T16:05:19.1925985Z    Compiling iroh-relay v0.98.0
2026-08-25T16:05:19.2030701Z    Compiling netlink-proto v0.12.0
2026-08-25T16:05:19.3330850Z    Compiling h2 v0.4.14
2026-08-25T16:05:19.4505047Z    Compiling hickory-proto v0.26.0-beta.4
2026-08-25T16:05:19.5000974Z    Compiling attohttpc v0.30.1
2026-08-25T16:05:19.5361391Z    Compiling n0-watcher v0.6.1
2026-08-25T16:05:19.5491329Z    Compiling tower-http v0.6.11
2026-08-25T16:05:19.6143886Z    Compiling iroh-base v0.98.0
2026-08-25T16:05:19.7980571Z    Compiling iroh-metrics v0.38.3
2026-08-25T16:05:19.8674235Z    Compiling num_enum v0.7.6
2026-08-25T16:05:19.9560912Z    Compiling tokio-stream v0.1.18
2026-08-25T16:05:20.0316869Z    Compiling moka v0.12.15
2026-08-25T16:05:20.1200910Z    Compiling serde_spanned v0.6.9
2026-08-25T16:05:20.1519853Z    Compiling toml_datetime v0.6.11
2026-08-25T16:05:20.1968577Z    Compiling xmltree v0.10.3
2026-08-25T16:05:20.4200875Z    Compiling ref-cast-impl v1.0.25
2026-08-25T16:05:20.4481243Z    Compiling thiserror-impl v1.0.69
2026-08-25T16:05:20.5710597Z    Compiling errno v0.3.14
2026-08-25T16:05:20.7197152Z    Compiling serial-core v0.4.0
2026-08-25T16:05:20.7253629Z    Compiling ioctl-rs v0.1.6
2026-08-25T16:05:20.8241099Z    Compiling termios v0.2.2
2026-08-25T16:05:20.8753279Z    Compiling simple-dns v0.9.3
2026-08-25T16:05:20.8868342Z    Compiling signal-hook v0.3.18
2026-08-25T16:05:20.8874013Z    Compiling simdutf8 v0.1.5
2026-08-25T16:05:20.9580671Z    Compiling sha1_smol v1.0.1
2026-08-25T16:05:21.0190980Z    Compiling arrayref v0.3.9
2026-08-25T16:05:21.0260948Z    Compiling winnow v0.7.15
2026-08-25T16:05:21.0663370Z    Compiling smol_str v0.1.24
2026-08-25T16:05:21.1310648Z    Compiling toml_write v0.1.2
2026-08-25T16:05:21.1520666Z    Compiling constant_time_eq v0.4.2
2026-08-25T16:05:21.1681402Z    Compiling resolv-conf v0.7.6
2026-08-25T16:05:21.3386642Z    Compiling serial-unix v0.4.0
2026-08-25T16:05:21.3565488Z    Compiling strum v0.28.0
2026-08-25T16:05:21.3720574Z    Compiling signal-hook-registry v1.4.8
2026-08-25T16:05:21.4500929Z    Compiling webpki-roots v1.0.7
2026-08-25T16:05:21.4540534Z    Compiling schemars_derive v1.2.1
2026-08-25T16:05:21.5411454Z    Compiling lru v0.16.4
2026-08-25T16:05:21.6275687Z    Compiling darling_core v0.23.0
2026-08-25T16:05:21.7099932Z    Compiling serde_bytes v0.11.19
2026-08-25T16:05:21.7218766Z    Compiling seize v0.5.1
2026-08-25T16:05:21.7221838Z    Compiling hmac v0.12.1
2026-08-25T16:05:21.8500423Z    Compiling iroh v0.98.2
2026-08-25T16:05:21.8623744Z    Compiling bitflags v1.3.2
2026-08-25T16:05:21.9147894Z    Compiling pin-utils v0.1.0
2026-08-25T16:05:21.9226802Z    Compiling rustix v0.38.44
2026-08-25T16:05:21.9634514Z    Compiling cmov v0.5.4
2026-08-25T16:05:21.9708030Z    Compiling dyn-clone v1.0.20
2026-08-25T16:05:21.9767185Z    Compiling nix v0.25.1
2026-08-25T16:05:22.0871383Z    Compiling papaya v0.2.4
2026-08-25T16:05:22.0931659Z    Compiling hkdf v0.12.4
2026-08-25T16:05:22.1468044Z    Compiling filedescriptor v0.8.3
2026-08-25T16:05:22.2171844Z    Compiling iroh-dns v0.98.0
2026-08-25T16:05:22.2304117Z    Compiling ctutils v0.4.2
2026-08-25T16:05:22.2911209Z    Compiling serial v0.4.0
2026-08-25T16:05:22.3430180Z    Compiling swarm-discovery v0.6.0-alpha.2 (https://github.com/SaberMage/swarm-discovery?rev=89a2200d54a4e3cab2f46cc75ebff49a1fb07614#89a2200d)
2026-08-25T16:05:22.3530771Z    Compiling backon v1.6.0
2026-08-25T16:05:22.4826114Z    Compiling anstyle-parse v1.0.0
2026-08-25T16:05:22.5848789Z    Compiling vte_generate_state_changes v0.1.2
2026-08-25T16:05:22.6014430Z    Compiling downcast-rs v1.2.1
2026-08-25T16:05:22.6290928Z    Compiling colorchoice v1.0.5
2026-08-25T16:05:22.6560821Z    Compiling foldhash v0.1.5
2026-08-25T16:05:22.6761725Z    Compiling anstyle-query v1.1.5
2026-08-25T16:05:22.7141320Z    Compiling anstyle v1.0.14
2026-08-25T16:05:22.7342553Z    Compiling is_terminal_polyfill v1.70.2
2026-08-25T16:05:22.7471203Z    Compiling linux-raw-sys v0.4.15
2026-08-25T16:05:22.8090408Z    Compiling unicode-width v0.2.0
2026-08-25T16:05:22.8221147Z    Compiling instability v0.3.12
2026-08-25T16:05:22.8320821Z    Compiling shell-words v1.1.1
2026-08-25T16:05:22.9704012Z    Compiling anstream v1.0.0
2026-08-25T16:05:22.9890092Z    Compiling vte v0.13.1
2026-08-25T16:05:23.0050537Z    Compiling hashbrown v0.15.5
2026-08-25T16:05:23.1138295Z    Compiling signal-hook-mio v0.2.5
2026-08-25T16:05:23.2430611Z    Compiling spake2 v0.4.0
2026-08-25T16:05:23.3390606Z    Compiling schemars v1.2.1
2026-08-25T16:05:23.3769488Z    Compiling terminal_size v0.4.4
2026-08-25T16:05:23.4999360Z    Compiling toml_edit v0.22.27
2026-08-25T16:05:23.5597942Z    Compiling strum_macros v0.26.4
2026-08-25T16:05:23.6709840Z    Compiling itertools v0.13.0
2026-08-25T16:05:23.7107807Z    Compiling sha1 v0.10.6
2026-08-25T16:05:23.7183987Z    Compiling castaway v0.2.4
2026-08-25T16:05:23.8014421Z    Compiling clap_lex v1.1.0
2026-08-25T16:05:23.9489376Z    Compiling static_assertions v1.1.0
2026-08-25T16:05:24.0051359Z    Compiling unicode-width v0.1.14
2026-08-25T16:05:24.0157137Z    Compiling indoc v2.0.7
2026-08-25T16:05:24.0601010Z    Compiling doctest-file v1.1.1
2026-08-25T16:05:24.2852584Z    Compiling crossterm v0.28.1
2026-08-25T16:05:24.3965449Z    Compiling compact_str v0.8.2
2026-08-25T16:05:24.4149442Z    Compiling clap_builder v4.6.0
2026-08-25T16:05:24.4889946Z    Compiling interprocess v2.4.2
2026-08-25T16:05:24.9850732Z    Compiling hyper v1.10.1
2026-08-25T16:05:25.2492530Z    Compiling lru v0.12.5
2026-08-25T16:05:25.3339911Z    Compiling darling_macro v0.23.0
2026-08-25T16:05:25.3572559Z    Compiling clap_derive v4.6.1
2026-08-25T16:05:25.3999144Z    Compiling iana-time-zone v0.1.65
2026-08-25T16:05:25.5610656Z    Compiling unicode-truncate v1.1.0
2026-08-25T16:05:25.6322588Z    Compiling darling v0.23.0
2026-08-25T16:05:25.7186801Z    Compiling cassowary v0.3.0
2026-08-25T16:05:25.7291010Z    Compiling chrono v0.4.45
2026-08-25T16:05:25.8817353Z    Compiling strum v0.26.3
2026-08-25T16:05:25.9620982Z    Compiling portable-pty v0.8.1
2026-08-25T16:05:25.9666732Z    Compiling toml v0.8.23
2026-08-25T16:05:25.9931302Z    Compiling nucleo-matcher v0.3.1
2026-08-25T16:05:26.1412640Z    Compiling qrcode v0.14.1
2026-08-25T16:05:26.2778209Z    Compiling ratatui v0.29.0
2026-08-25T16:05:26.5634654Z    Compiling tempfile v3.27.0
2026-08-25T16:05:26.9685275Z    Compiling hyper-util v0.1.20
2026-08-25T16:05:27.0079311Z    Compiling spt-test-support v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-test-support)
2026-08-25T16:05:27.5680852Z    Compiling clap v4.6.1
2026-08-25T16:05:27.8219918Z    Compiling spt-msg v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-msg)
2026-08-25T16:05:28.2550195Z    Compiling spt-runtime v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-runtime)
2026-08-25T16:05:28.2552413Z    Compiling spt-term v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-term)
2026-08-25T16:05:28.8923964Z    Compiling igd-next v0.17.1
2026-08-25T16:05:30.0945020Z    Compiling portmapper v0.16.0
2026-08-25T16:05:31.2141498Z    Compiling spt-live v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-live)
2026-08-25T16:05:34.5277924Z    Compiling rustls-webpki v0.103.13
2026-08-25T16:05:36.8218876Z    Compiling tokio-rustls v0.26.4
2026-08-25T16:05:36.8219485Z    Compiling noq-proto v0.17.0
2026-08-25T16:05:36.8219824Z    Compiling rustls-platform-verifier v0.7.0
2026-08-25T16:05:36.9678835Z    Compiling hyper-rustls v0.27.9
2026-08-25T16:05:36.9680200Z    Compiling hickory-net v0.26.0-beta.4
2026-08-25T16:05:36.9680770Z    Compiling tokio-websockets v0.13.2
2026-08-25T16:05:37.0925073Z    Compiling reqwest v0.13.4
2026-08-25T16:05:37.9569441Z    Compiling hickory-resolver v0.26.0-beta.4
2026-08-25T16:05:51.1295120Z    Compiling spt-net v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-net)
2026-08-25T16:05:52.8904254Z    Compiling spt-daemon v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-daemon)
2026-08-25T16:06:03.3552705Z    Compiling spt v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt)
2026-08-25T16:06:10.0364081Z     Finished `test` profile [unoptimized + debuginfo] target(s) in 1m 06s
2026-08-25T16:06:10.0586783Z      Running tests/n1_pairing.rs (target/debug/deps/n1_pairing-8a409b1382dc8e09)
2026-08-25T16:06:10.0599929Z 
2026-08-25T16:06:10.0600154Z running 1 test
2026-08-25T16:06:16.2504194Z test new_brain_serves_against_old_broker ... ok
2026-08-25T16:06:16.2506937Z 
2026-08-25T16:06:16.2507213Z test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 6.19s
2026-08-25T16:06:16.2507556Z 
